home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / var / lib / dpkg / info / console-tools.prerm < prev    next >
Encoding:
Text File  |  2007-01-22  |  397 b   |  15 lines

  1. #!/bin/sh -e
  2.  
  3. test -x /usr/sbin/install-docs && ( install-docs -r lct 2> /dev/null) || true
  4.  
  5. # Automatically added by dh_installinit
  6. if [ -x "/etc/init.d/console-screen.sh" ] && [ "$1" = remove ]; then
  7.     if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
  8.         invoke-rc.d console-screen.sh stop || exit $?
  9.     else
  10.         /etc/init.d/console-screen.sh stop || exit $?
  11.     fi
  12. fi
  13. # End automatically added section
  14.  
  15.